home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / test / doctest_aliases.py < prev    next >
Text File  |  2005-10-18  |  243b  |  14 lines

  1. # Used by test_doctest.py.
  2.  
  3. class TwoNames:
  4.     '''f() and g() are two names for the same method'''
  5.  
  6.     def f(self):
  7.         '''
  8.         >>> print TwoNames().f()
  9.         f
  10.         '''
  11.         return 'f'
  12.  
  13.         g = f # define an alias for f
  14.